home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / tileblur.scm < prev    next >
Text File  |  2009-12-15  |  3KB  |  81 lines

  1. ; Chris Gutteridge (cjg@ecs.soton.ac.uk)
  2. ; At ECS Dept, University of Southampton, England.
  3.  
  4. ; This program is free software; you can redistribute it and/or modify
  5. ; it under the terms of the GNU General Public License as published by
  6. ; the Free Software Foundation; either version 2 of the License, or
  7. ; (at your option) any later version.
  8. ;
  9. ; This program is distributed in the hope that it will be useful,
  10. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. ; GNU General Public License for more details.
  13. ;
  14. ; You should have received a copy of the GNU General Public License
  15. ; along with this program; if not, write to the Free Software
  16. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18.  
  19. (define (script-fu-tile-blur inImage inLayer inRadius inVert inHoriz inType)
  20.  
  21.   (let* (
  22.         (theImage inImage)
  23.         (theLayer inLayer)
  24.         (theHeight (car (gimp-drawable-height theLayer)))
  25.         (theWidth (car (gimp-drawable-width theLayer)))
  26.         )
  27.  
  28.     (define (pasteat xoff yoff)
  29.       (let ((theFloat (car(gimp-edit-paste theLayer 0))))
  30.         (gimp-layer-set-offsets theFloat (* xoff theWidth) (* yoff theHeight) )
  31.         (gimp-floating-sel-anchor theFloat)
  32.        )
  33.     )
  34.  
  35.     (gimp-image-undo-group-start theImage)
  36.     (gimp-layer-resize theLayer (* 3 theWidth) (* 3 theHeight) 0 0)
  37.  
  38.     (gimp-rect-select theImage 0 0 theWidth theHeight CHANNEL-OP-REPLACE 0 0)
  39.     (gimp-edit-cut theLayer)
  40.  
  41.     (gimp-selection-none theImage)
  42.     (gimp-layer-set-offsets theLayer theWidth theHeight)
  43.  
  44.     (pasteat 1 1) (pasteat 1 2) (pasteat 1 3)
  45.     (pasteat 2 1) (pasteat 2 2) (pasteat 2 3)
  46.     (pasteat 3 1) (pasteat 3 2) (pasteat 3 3)
  47.  
  48.     (gimp-selection-none theImage)
  49.     (if (= inType 0)
  50.         (plug-in-gauss-iir RUN-NONINTERACTIVE
  51.                theImage theLayer inRadius inHoriz inVert)
  52.         (plug-in-gauss-rle RUN-NONINTERACTIVE
  53.                theImage theLayer inRadius inHoriz inVert)
  54.     )
  55.  
  56.     (gimp-layer-resize theLayer
  57.                        theWidth theHeight (- 0 theWidth) (- 0 theHeight))
  58.     (gimp-layer-set-offsets theLayer 0 0)
  59.     (gimp-image-undo-group-end theImage)
  60.     (gimp-displays-flush)
  61.   )
  62. )
  63.  
  64. (script-fu-register "script-fu-tile-blur"
  65.   _"_Tileable Blur..."
  66.   _"Blur the edges of an image so the result tiles seamlessly"
  67.   "Chris Gutteridge"
  68.   "1998, Chris Gutteridge / ECS dept, University of Southampton, England."
  69.   "25th April 1998"
  70.   "RGB*"
  71.   SF-IMAGE       "The Image"         0
  72.   SF-DRAWABLE    "The Layer"         0
  73.   SF-ADJUSTMENT _"Radius"            '(5 0 128 1 1 0 0)
  74.   SF-TOGGLE     _"Blur vertically"   TRUE
  75.   SF-TOGGLE     _"Blur horizontally" TRUE
  76.   SF-OPTION     _"Blur type"         '(_"IIR" _"RLE")
  77. )
  78.  
  79. (script-fu-menu-register "script-fu-tile-blur"
  80.                          "<Image>/Filters/Blur")
  81.